/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Header Styles */
.header {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the logo horizontally */
}

.logo img {
    height: 70px;
}










/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black; /* Background color */
    color: white; /* Text color */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Glowing Box */
.glowing-box {
    position: relative; /* Make the box relative for absolute positioning */
    width: 1100px;
    padding: 20px;
    background-color: #0f0f0f; /* Black background */
    border: 2px solid #007bff; /* Blue outline */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 0 20px 10px #007bff; /* Blue glow */
    transition: box-shadow 0.3s; /* Smooth transition */
    margin-bottom: 20px; /* Add margin to separate the boxes */
    overflow: visible; /* Ensure overflow is visible */
}

.glowing-box:hover {
    box-shadow: 0 0 20px 10px #007bff; /* White glow on hover */
    border: 2px solid #007bff;
}

/* Section Titles */
.section-title, .sub-title {
    margin-bottom: 20px;
    text-align: center; /* Center the titles */
}

.section-title {
    font-size: 36px; /* Adjust size as needed */
    color: #007bff;
}

.sub-title {
    font-size: 48px; /* Adjust size as needed */
    color: #fff;
}

/* Case Study Container */
.case-study {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensure text is on the right side of the video */
}

/* Video Styles */
.glowing-box video {
    width: 45%; /* Adjust size as needed */
    max-width: 550px; /* Ensure max size */
    height: auto;
    border-radius: 10px;
    margin-right: 20px; /* Space between video and text */
    margin-left: 30px;
    margin-top: -15px;
}

/* Paragraph Styles */
.case-study-details {
    max-width: 50%; /* Ensure text is on the right side of the video */
}

.case-study-details p {
    font-size: 18px; /* Adjust size as needed */
    line-height: 1;
    text-align: left;
    margin-right: 30px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 25px; /* Add padding to make space for checkmarks */
}

.case-study-details p span {
    display: block;
    margin-bottom: 10px; /* Space between spans */
}

.case-study-details p span::before {
    content: "✔"; /* Checkmark */
    position: absolute;
    left: 0;
    color: #007bff; /* Blue color for checkmark */
}

/* Glowing Email Box */
.glowing-email-box {
    margin-top: 20px;
    text-align: center; /* Center the text and button */
}

.glowing-email-box input[type="email"] {
    width: 90%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #007bff; /* Blue outline */
    border-radius: 5px;
    font-size: 14px;
    color: black;
    background-color: #fff; /* Black background */
    box-shadow: 0 0 10px 5px #007bff; /* Blue glow */
    transition: background-color 0.3s, box-shadow 0.3s;
}

.glowing-email-box input[type="email"]:hover {
    background-color: white; /* White background on hover */
    box-shadow: 0 0 15px 10px #007bff; /* Stronger blue glow on hover */
}

.glowing-email-box button {
    width: 90%;
    padding: 10px;
    background-color: #007bff; /* Blue color */
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    margin-right: 0px;
    margin-bottom: 50px;
}

.glowing-email-box button .button-subtitle {
    display: block;
    font-size: 12px;
    color: white;
    margin-top: 5px;
}

.glowing-email-box button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Mobile Styles */
@media (max-width: 767px) {
    .glowing-box {
        width: 90%; /* Adjust width for mobile */
        padding: 15px;
    }

    .section-title {
        font-size: 28px; /* Adjust size as needed */
    }

    .sub-title {
        font-size: 18px; /* Adjust size as needed */
    }

    .case-study {
        flex-direction: column; /* Stack video and text vertically on mobile */
        align-items: center;
    }

    .glowing-box video {
        width: 100%; /* Make video full width on mobile */
        margin-right: 0; /* Remove right margin on mobile */
        margin-bottom: 20px; /* Add bottom margin */
    }

    .case-study-details {
        max-width: 100%; /* Make text full width on mobile */
    }

    .case-study-details p {
        font-size: 14px; /* Adjust size as needed */
    }

    .glowing-email-box {
        width: 100%; /* Make email box full width on mobile */
    }
}





